home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
C/C++ Users Group Library 1996 July
/
C-C++ Users Group Library July 1996.iso
/
listings
/
v_12_09
/
allison
/
intproex.c
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1994-07-10
|
244 b
|
20 lines
#include <stdio.h>
main()
{
char x = 124;
char y = x + x;
printf("x == %02X\n",x);
printf("x + x == %02X\n",x+x);
printf("y == %02X\n\n",y);
return 0;
}
/* Output:
x == 7C
x + x == F8
y == FFF8
*/